home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / siglist.c,v < prev    next >
Text File  |  1988-07-28  |  2KB  |  71 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.28.13.01.10;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1980 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)siglist.c    5.2 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. #include <signal.h>
  35.  
  36. char    *sys_siglist[NSIG] = {
  37.     "Signal 0",
  38.     "Hangup",            /* SIGHUP */
  39.     "Interrupt",            /* SIGINT */
  40.     "Quit",                /* SIGQUIT */
  41.     "Illegal instruction",        /* SIGILL */
  42.     "Trace/BPT trap",        /* SIGTRAP */
  43.     "IOT trap",            /* SIGIOT */
  44.     "EMT trap",            /* SIGEMT */
  45.     "Floating point exception",    /* SIGFPE */
  46.     "Killed",            /* SIGKILL */
  47.     "Bus error",            /* SIGBUS */
  48.     "Segmentation fault",        /* SIGSEGV */
  49.     "Bad system call",        /* SIGSYS */
  50.     "Broken pipe",            /* SIGPIPE */
  51.     "Alarm clock",            /* SIGALRM */
  52.     "Terminated",            /* SIGTERM */
  53.     "Urgent I/O condition",        /* SIGURG */
  54.     "Stopped (signal)",        /* SIGSTOP */
  55.     "Stopped",            /* SIGTSTP */
  56.     "Continued",            /* SIGCONT */
  57.     "Child exited",            /* SIGCHLD */
  58.     "Stopped (tty input)",        /* SIGTTIN */
  59.     "Stopped (tty output)",        /* SIGTTOU */
  60.     "I/O possible",            /* SIGIO */
  61.     "Cputime limit exceeded",    /* SIGXCPU */
  62.     "Filesize limit exceeded",    /* SIGXFSZ */
  63.     "Virtual timer expired",    /* SIGVTALRM */
  64.     "Profiling timer expired",    /* SIGPROF */
  65.     "Window size changes",        /* SIGWINCH */
  66.     "Signal 29",
  67.     "User defined signal 1",    /* SIGUSR1 */
  68.     "User defined signal 2"        /* SIGUSR2 */
  69. };
  70. @
  71.